home *** CD-ROM | disk | FTP | other *** search
/ Sunday Savers: Sharing Fun! I Know My Savior Lives / Sunday Savers: Sharing Fun! I Know My Savior Lives.iso / mac / Xtras / PrintOMatic MX 1.7.3 / PrintOMatic MX (Win32) / -PrintOMatic MX Demo.dir / 00016_movie script.ls < prev    next >
Encoding:
Text File  |  2004-04-06  |  551 b   |  19 lines

  1. on startMovie
  2.   if isXtraInstalled("printomatic") = 0 then
  3.     alert("The PrintOMatic Xtra is not installed; printing is disabled." & RETURN & RETURN & "Please consult the Read Me file in the PrintOMatic folder for information on how to install PrintOMatic.")
  4.   end if
  5. end
  6.  
  7. on isXtraInstalled xtraName
  8.   if not stringp(xtraName) then
  9.     alert("isXtraInstalled() requires an Xtra name to work.")
  10.     return 0
  11.   end if
  12.   repeat with i = 1 to the number of xtras
  13.     if xtra(i).name = xtraName then
  14.       return 1
  15.     end if
  16.   end repeat
  17.   return 0
  18. end
  19.